Skip to main content

What’s New

Qrvey 8.7
Version 8.7 of the Qrvey platform is now available to customers! This version includes new features including area charts, the ability to pivot and export data, as well as numerous bug fixes and performance improvements.
Learn More
Qrvey 8.6
Version 8.6 of the Qrvey platform is now available to customers. This version includes several new feature enhancements and performance improvements.
Learn More
Required Update for 8.5.1
Attention 8.5.1 customers: for any 8.5.1 instance deployed prior to 08/05/2024, an update is required to ensure you are running the latest images.
Learn More
Qrvey 8.5
Version 8.5 (LTS) of the Qrvey platform is now available to customers. This version includes several new features and performance improvements.
Learn More
End-of-life Schedule
We've added a new article that lists the features and endpoints that have been scheduled for deprecation. All features and endpoints will be supported for (1) year after the release date of the LTS version that contains the alternative.
Learn More
Version: 8.6

Dashboard Builder

When embedded in an application, the Dashboard Builder widget enables users to modify existing dashboards or add new dashboards. Dashboards may contain reports, web forms, or other content.

Embeddable Script

<!-- Tag -->
<qrvey-builders settings="config"></qrvey-builders>

<!-- Config -->
<script>
var config = {
apiKey: "<API_KEY>",
domain: "<DOMAIN>",
userId: "<USER_ID>",
appId: "<APP_ID>"
};
</script>

<!-- Launcher -->
<script type="text/javascript" src="https://<WIDGETS_URL>/widgets-launcher/app.js"></script>

Configuration Object

PropertyValueRequired
apiKeyString, Your organization’s unique API key required to access the Qrvey platform.Required, if qvToken is not provided
qvTokenString, Encrypted token used for secure authentication.Required, if apiKey is not provided
appIdString, ID of the Qrvey application that contains the asset you want to embed.Required
domainString, The base URL of your Qrvey instance.Required
userIdString, ID of the Qrvey User that owns the application being embedded.Required
clientIdString, Unique identifier for the tenant end user. Required for using the End User Personalization and Download Manager features. The clientId must be set to a unique value for each tenant end user.Optional
dashboardIdString, ID of a specific dashboard to open to. If omitted, the end user will be taken to the "dashboard selection" page.Optional, but in practice you should always send the user to a specific dashboard.
timezoneObject, Overrides the timezone setting in Qrvey Admin Center. For more information, see Configuring Time Zone Settings.Optional
userFiltersArray<Object>, Collection of custom filters that the system will apply to the visualized data. For more information, see Working With Filters in Embedded Scenarios.Optional
customTokensObject, Sets custom threshold values in Bullet and Dial charts. For more information, see Using Custom Tokens.Optional
authenticatedSession.emailString, The email property in the authenticatedSession object specifies the email address to associate with the widget. If an address is not specified, exports are sent to the email address associated with the user ID.Optional
themeIdString, theme ID to use in the component. For more details, please see Accessing a Theme Programmatically.Optional
fitPanelButtonBoolean, If false, hides the "fit to panel" button on charts and panels. Defaults to true.Optional
defaultModeBoolean, Toggles the default Dashboard view to "design" or "interaction". Defaults to "design".Optional
featurePermissionObject, Configure which features are available in the widget. For more information, please see The Feature Permission Object below.Optional
assetPermissionsObject, Controls visibility of the following asset types: datasets, charts, metrics, summaries, pages. For more information, please see The Asset Permissions Object below.Optional

Asset Permissions

PropertyDescriptionRequired
datasets.dataset_idsObject, Pass in string array of IDs for the assets to be whitelisted. Any assets not defined in the list will be rendered in the UI and the others will not be visible or usable.Optional
charts.chart_idsString Array, Pass in string array of IDs for the assets to be whitelisted. Any assets not defined in the list will be rendered in the UI and the others will not be visible or usable.Optional
metrics.metric_idsString Array, Pass in string array of IDs for the assets to be whitelisted. Any assets not defined in the list will be rendered in the UI and the others will not be visible or usable.Optional
summaries.question_idsString Array, Pass in string array of IDs for the assets to be whitelisted. Any assets not defined in the list will be rendered in the UI and the others will not be visible or usable.Optional
pages.page_idsString Array, Pass in string array of IDs for the assets to be whitelisted. Any assets not defined in the list will be rendered in the UI and the others will not be visible or usable.Optional

Example:

"assetPermissions": {       
"pages": {
"page_ids": [
"Vy4rfcqlqa",
"jy4r0d6qj9"
]
}
}

Feature Permission

The following table describes the properties of the featurePermission object.

PropertyDescriptionRequired
liteVersionBoolean, If true, it is the equivalent of setting the following properties pagesAndApplication.hidePublishPageButton, pagesAndApplication.hidePageStatus, and navigation.hideNavigationTab to true. Defaults to false. For more details, check the example given below this table.Optional
navigationObject, Defines navigation-related features that can be hidden.Optional
navigation.hideNavigationTabBoolean, If true, hides the Navigation link in the top menu bar. Defaults to false.Optional
userManagementObject, Defines user management related features that can be hidden.Optional
userManagement.hideUserManagementTabBoolean If true, hides the User Management link in the top bar of the widget. Defaults to false.Optional
pagesAndApplicationObject, Define pages and application-related features that can be hidden.Optional
pagesAndApplication.hidePublishAppButtonBoolean, If true, hides “unpublish / publish" application button. Defaults to false.Optional
pagesAndApplication.hidePublishPageButtonBoolean, If true, hides “publish dashboard" button. Defaults to false.Optional
pagesAndApplication.hideCopyPageLinkBoolean, If true, hides File > Copy Dashboard link where the user can get the link of a page. Defaults to false.Optional
pagesAndApplication.hideLaunchButtonBoolean, If true, hides the button to access the page view. Defaults to false.Optional
pagesAndApplication.hidePageStatusBoolean, If true, hides the Dashboard Status Message. Defaults to false.Optional
pagesAndApplication.hidePrivacyOptionBoolean, If true, hides the File > Privacy menu on dashboards. Defaults to false.Optional
pagesAndApplication.hideSubscriptionsOptionBoolean, If true, hides the Insert > Subscriptions menu on dashboards. Defaults to false.Optional
pagesAndApplication.hideModeChangeButtonBoolean, If true, hides the Interact / Design button. Defaults to false.Optional
canvasObject, Defines canvas related features that can be hidden.Optional
canvas.hideManageCanvasBoolean, If true, hides the Grid Dropdown Menu, Discard button, Grid Options button and Responsive View buttons. Defaults to false.Optional
downloadsObject, Contains params to control display of the download and schedule exports feature.Optional
downloads.hideGeneralDownloadBoolean, If true, hides the "Download Dashboard" access points within the widget. However, it does not impact the "Download Chart" access points. Defaults to false.Optional
downloads.hideScheduleBoolean, If true, disables the Schedule Export link within dashboard and panel downloads. Defaults to false.
Note: If false, both clientId and authenticatedSession.email are required for the Schedule Export link to be visible.
Optional
filtersObject. Contains the filters object parameters.Optional
filters.globalBoolean, If true, hides creation points of global filters. Defaults to false.Optional
filters.pageBoolean, If true, hides creation points of page filters. Defaults to false.Optional
filters.tabBoolean, If true, hides creation points of tab filters. Defaults to false.Optional
filters.chartBoolean, If true, hides creation points of chart filters. Defaults to false.Optional
filters.filterPanelBoolean, If true, hides the filter panel. Defaults to false.Optional
panelsObject. Contains the panels object parameters.Optional
panels.globalObject, Contains global panel settings.Optional
panels.global.hide_allBoolean, When true, hides the entire panel menu. Defaults to false.Optional
panels.global.hide_edit_menuBoolean, When true, hides the "edit chart" option. Defaults to false.Optional
panels.global.hide_duplicate_menuBoolean, When true, hides the "duplicate chart" option. Defaults to false.Optional
panels.global.hide_downloads_menuBoolean, When true, hides the "download" sub-menu option. Defaults to false.Optional
panels.global.hide_delete_menuBoolean, When true, hides the "delete chart" option. Defaults to false.Optional
panels.global.hide_JPGBoolean, When true, hides the "download JPG" option. Defaults to false.Optional
panels.global.hide_PDFBoolean, When true, hides the "PDF download" option. Defaults to false.Optional
panels.global.hide_CSVBoolean, When true, hides the "CSV download" option. Defaults to false.Optional
panels.global.hide_CSV_summaryBoolean, When true, hides the "CSV summary" option. Defaults to false.Optional
panels.metricsObject, Contains metrics panel settings.Optional
panels.metrics.hide_edit_menuBoolean, When true, hides the "edit chart" option for metrics panels. Defaults to false.Optional
panels.metrics.hide_duplicate_menuBoolean, When true, hides the "duplicate chart" option for metrics panels. Defaults to false.Optional
panels.metrics.hide_downloads_menuBoolean, When true, hides the "download" sub-menu option for metrics panels. Defaults to false.Optional
panels.metrics.hide_delete_menuBoolean, When true, hides the "delete chart" option for metrics panels. Defaults to false.Optional
panels.metrics.hide_JPGBoolean, When true, hides the "download JPG" option for metrics panels. Defaults to false.Optional
panels.metrics.hide_PDFBoolean, When true, hides the "PDF download" option for metrics panels. Defaults to false.Optional
panels.metrics.hide_CSVBoolean, When true, hides the "CSV download" option for metrics panels. Defaults to false.Optional
panels.metrics.hide_CSV_summaryBoolean, When true, hides the "CSV summary" option for metrics panels. Defaults to false.Optional
panels.metrics.hide_EXCELBoolean, When true, hides the "EXCEL download" option for metrics panels. Defaults to false.Optional
panels.summariesObject, Contains summaries panel settings.Optional
panels.summaries.hide_edit_menuBoolean, When true, hides the "edit chart" option for summaries panels. Defaults to false.Optional
panels.summaries.hide_duplicate_menuBoolean, When true, hides the "duplicate chart" option for summaries panels. Defaults to false.Optional
panels.summaries.hide_downloads_menuBoolean, When true, hides the "download" sub-menu option for summaries panels. Defaults to false.Optional
panels.summaries.hide_delete_menuBoolean, When true, hides the "delete chart" option for summaries panels. Defaults to false.Optional
panels.summaries.hide_JPGBoolean, When true, hides the "download JPG" option for summaries panels. Defaults to false.Optional
panels.summaries.hide_PDFBoolean, When true, hides the "PDF download" option for summaries panels. Defaults to false.Optional
panels.summaries.hide_CSVBoolean, When true, hides the "CSV download" option for summaries panels. Defaults to false.Optional
panels.summaries.hide_CSV_summaryBoolean, When true, hides the "CSV summary" option for summaries panels. Defaults to false.Optional
panels.summaries.hide_EXCELBoolean, When true, hides the "EXCEL download" option for summaries panels. Defaults to false.Optional
panels.chartsObject, Contains charts panel settings.Optional
panels.charts.hide_edit_menuBoolean, When true, hides the "edit chart" option for charts panels. Defaults to false.Optional
panels.charts.hide_duplicate_menuBoolean, When true, hides the "duplicate chart" option for charts panels. Defaults to false.Optional
panels.charts.hide_downloads_menuBoolean, When true, hides the "download" sub-menu option for charts panels. Defaults to false.Optional
panels.charts.hide_delete_menuBoolean, When true, hides the "delete chart" option for charts panels. Defaults to false.Optional
panels.charts.hide_JPGBoolean, When true, hides the "download JPG" option for charts panels. Defaults to false.Optional
panels.charts.hide_PDFBoolean, When true, hides the "PDF download" option for charts panels. Defaults to false.Optional
panels.charts.hide_CSVBoolean, When true, hides the "CSV download" option for charts panels. Defaults to false.Optional
panels.charts.hide_CSV_summaryBoolean, When true, hides the "CSV summary" option for charts panels. Defaults to false.Optional
panels.charts.hide_EXCELBoolean, When true, hides the "EXCEL download" option for charts panels. Defaults to false.Optional

Tip: To hide all features, set the liteVersion property to true. For example:

const widgetConfig = {
domain: "DOMAIN",
appid: "APP_ID",
userid: "USER_ID",
featurePermission: {
liteVersion: true,
},
}

Tip: To hide most features, set the liteVersion property to true and list the exceptions you want to show to false. For example:

const widgetConfig = {
domain: "DOMAIN",
appid: "APP_ID",
userid: "USER_ID",
featurePermission: {
liteVersion: true,
userManagement:{
hideUserManagementTab: false
}
},
}

Events

The widget supports custom events to update keys of the configuration, you can dispatch an event using your own user interface to modify the behavior.

  • atApplyUserFilters() — Enables changes to the userFilters property.

    window.dispatchEvent(new CustomEvent('atApplyUserFilters', {detail: userFilters}));